home *** CD-ROM | disk | FTP | other *** search
- <?
- $cgiPath = "(scriptpath)";
- $scrName = $_SERVER['PHP_SELF'];
- $pref = @$HTTP_GET_VARS ['pref'];
- $query = $_SERVER['QUERY_STRING'];
-
- function PrintSearchCode ($url)
- {
- $file = fopen ($url, 'r');
- while (!feof ($file))
- {
- echo (fread ($file, 1024));
- }
- fclose ($file);
- }
-
- if (!is_string($pref) || !@include ($pref . "header.htm"))
- @include ("header.htm");
-
- if (is_string($query))
- PrintSearchCode ($cgiPath . "?" . $query . "&wrap=" . $scrName);
-
- if (!is_string($pref) || !@include ($pref . "footer.htm"))
- @include ("footer.htm");
- ?>